home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
138
/
138.xpi
/
chrome
/
stumbleupon.jar
/
content
/
searchDialog.xul
< prev
next >
Wrap
Extensible Markup Language
|
2009-05-22
|
1KB
|
57 lines
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://stumbleupon/skin/searchDialog.css" type="text/css"?>
<!DOCTYPE window SYSTEM "chrome://stumbleupon/locale/stumbleupon.dtd" >
<dialog id="stumble_search_dialog" title="StumbleUpon Search"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
buttons="accept,cancel"
persist="screenX screenY width height"
ondialogaccept="return doOK();"
onload="init()">
<stringbundleset id="stringbundleset">
<stringbundle id="bundle_stumble" src="chrome://stumbleupon/locale/stumbleupon.properties"/>
</stringbundleset>
<script type="application/x-javascript" src="searchDialog.js"/>
<popupset>
<popup id="fieldpopup"/>
</popupset>
<grid flex="1" style="margin:10px">
<columns>
<column flex="1"/>
</columns>
<rows>
<row>
<hbox>
<spacer flex="1"/>
<label value="Enter search terms:"/>
<spacer flex="1"/>
</hbox>
</row>
<row>
<textbox id="field"
maxrows="14"
width="200px"
autocompletepopup="fieldpopup"
inputtooltiptext="Enter search terms"
ontextentered="handle_field_textentered()"
ontextreverted="handle_field_textreverted()"
onkeyup="handle_field_keyup(event)"
onfocus="handle_field_focus()"
onclick="field_click_kludge('click')"
onblur="field_click_kludge('blur')"
reflectpopuplabel="true"
sizetopopup="none"
maxLength="150"/>
</row>
</rows>
</grid>
</dialog>